Google News
logo
CPP - Quiz(MCQ)
What constant defined in <climits> header returns the number of bits in a char?
A)
BIT_CHAR
B)
CHAR_BIT
C)
SIZE_CHAR
D)
CHAR_SIZE

Correct Answer :   CHAR_BIT


Explanation : CHAR_BIT is a macro constant defined in <climits> header file which expresses the number of bits in a character object in bytes.

Advertisement